HipAssetsBinding.loadCSV

Usage:

//Iterate every value
foreach(v; csv) //or
//Iterate columns
foreach(v; csv.getColumnRange(0)) //or
//Iterate rows
foreach(v; csv.getRow(0))
//Get the csv cell
csv[x, y]
class HipAssetsBinding
extern (System) __gshared
IHipAssetLoadTask function(string path, string f = __FILE__, size_t l = __LINE__) loadCSV;

Return Value

IHipCSV

Meta